/* Global Styling */
body {
  font-family: 'PT Serif', serif;
  box-sizing: border-box;
  margin: 0px; 
}

/* Content Section Styling */
.content {
  padding: 20px;
  margin: 20px;
}

.content h3, .content h4 {
  font-family: 'Amazon Ember', sans-serif;
  font-size: 28px;
  margin-top: 20px; 
  color: #000000;
}

.content p {
  font-family: 'Amazon Ember', sans-serif; 
  font-size: 16px; 
  line-height: 1.6; 
  color: #000000;
}

.content ul {
  list-style-type: disc;
  margin-left: 20px; 
}

.content ul li {
  font-family: 'Amazon Ember', sans-serif;
  font-size: 16px;
  color: #666; 
  margin-bottom: 10px; 
}

/* Header Section Styling */
header {
  background-color: #F2EEE2;
  padding: 20px;
  text-align: center;
}

/* Navigation Styling */
nav {
  padding: 10px;
  text-align: center;
}

nav a {
  color: #000; 
  text-decoration: none; 
  margin: 0 30px;
}

nav a:hover {
  text-decoration: underline; 
  color: #b48146; 
}

nav a.active {
  text-decoration: underline; /* Adds underline for active link */
  color: #b48146; /* Active link color */
}

/* Breadcrumb Styling */
.breadcrumb-item {
  display: inline;
  color: #000000; /* Default color */
}

.breadcrumb-item a {
  color: #666; /* Gray color for links */
  text-decoration: none;
  margin-left: 0px;
  margin-right: 0px;
}

.breadcrumb>.active {
  color: #000000 !important; /* Active breadcrumb color */
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/"; /* Separator between breadcrumb items */
  color: #000000;
}

.breadcrumb-item a:hover {
  text-decoration: underline; /* Underline on hover */
}

/* Banner Styling */
.banner {
  position: relative;
  width: 95%; /* Responsive width */
  max-width: 100%; /* Ensures it does not exceed screen width */
  height: auto; /* Maintains aspect ratio */
  overflow: hidden; /* Hides overflow content */
  margin: 0 auto; /* Centers the banner */
}

.banner-img {
  width: 100%;
  display: block;
  object-fit: cover; /* Ensures the image covers the container */
}

.banner h3 {
  font-size: 40px !important; /* Large heading size */
}

/* Container and Section Styling */
.container {
  width: 100%;
  margin: 0 auto;
}

.section {
  display: flex;
  margin-bottom: 22px;
  padding: 20px;
  border-radius: 8px; /* Rounded corners */
}

.section:nth-child(odd) {
  flex-direction: row-reverse; /* Reverse order for alternate sections */
  margin-left: 0px;
}

/* Text Section Styling */
.text, .text1 {
  width: 50%;
  display: flex;
  flex-direction: column; /* Vertical layout */
  justify-content: center; /* Centers content vertically */
}

.text {
  margin-right: 7%; /* Space for text on the left */
}

.text1 {
  margin-left: 78px; /* Space for text on the right */
}

.text h3, .text h2, .text1 h2, .text1 h3 {
  font-family: 'Amazon Ember', sans-serif; /* Sans-serif font for headings */
  font-size: 2em; /* Heading size */
  margin-bottom: 0px; /* No space below headings */
  color: #b48146; /* Golden brown color for headings */
}

.text p, .text1 p {
  font-size: 16px; /* Font size for paragraphs */
  line-height: 1.8; /* Increased line spacing for readability */
  color: #000000; /* Black color */
  margin-top: 20px;
  text-align: justify; /* Justified text alignment */
}

/* Image Section Styling */
.image {
  width: 50%;
  display: flex;
  align-items: center; /* Vertically centers image */
  justify-content: center; /* Horizontally centers image */
}

.image img {
  max-width: 70%; /* Image should not exceed 70% of the container */
  height: auto; /* Maintain aspect ratio */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
}

/* Icon Styling */
.icon-links {
  display: flex;
  gap: 50px; /* Space between icons */
}

.icon {
  width: 30px; /* Icon size */
  height: 30px;
  transition: transform 0.2s; /* Smooth scaling on hover */
}

.icon:hover {
  transform: scale(1.1); /* Slightly enlarge icon on hover */
}


/* Base Styles */
header.mobile {
  position: relative;
}

#menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 15px;
}

.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #333;
  margin: 4px auto;
}

/* Full-Screen Sliding Menu */
#sliding-menu {
  position: fixed;
  top: 0;
  left: -100%; /* Hidden off-screen */
  width: 80%; /* Cover entire screen */
  height: 100%;
  background-color: #F2EEE2;
  color: #fff;
  z-index: 1000; 
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

#sliding-menu ul {
  list-style: none;
  padding: 0;
  text-align: center;
  margin-top: 30px;
}

#sliding-menu ul li {
  margin: 20px 0;
}

#sliding-menu ul li a {
  color: black;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

#sliding-menu ul li {
  margin: 20px 0;
  border-bottom: 1px solid #ccc; /* Add a light gray line */
  padding-bottom: 10px; /* Add some spacing between the item and the border */
  width: 100%; /* Ensure the border spans the entire width of the menu */
}

#sliding-menu ul li:last-child {
   /* Remove the border from the last item for clean design */
}


/* Close Button */
#close-menu {
  position: absolute;
  top: 0px;
  right: 20px;
  background: none;
  border: none;
  color: black;
  font-size: 40px;
  cursor: pointer;
}

/* Active Menu */
#sliding-menu.active {
  left: 0; /* Slide into view */
}

body.menu-open {
  overflow: hidden; /* Prevent scrolling when menu is open */
}


@media (max-width: 768px) {
.dektop{
  display:none;

}
.container{
  display: none;
}
}

@media (min-width: 768px) {
  .mobile{
    display:none;
  }
  .mobile-div{
    display: none;
  }
  }





.mobile-section {
  padding: 20px;
}

.mobile-image img {
  width: 100%;
  max-width: 400px; /* Max width to prevent stretching */
  display: block;
  margin: 0 auto 20px auto; /* Center the image */
}

.mobile-text-faceshop {
  text-align: left;
  margin-bottom: 10px;
}

.mobile-text-faceshop h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #b48146;
  font-family: 'Amazon Ember', sans-serif; /* Sans-serif font for headings */
}

.mobile-text-faceshop p {
  font-size: 16px;
  color: #555;
  text-align: justify;
}



/* Media query for larger screens (tablet and desktop) */
@media screen and (min-width: 768px) {
  .mobile-section {
      display: flex;
      flex-direction: row;
      align-items: center;
  }

  .mobile-image {
      margin-right: 20px;
  }

  .mobile-text-faceshop {
      text-align: left;
  }

  .mobile-text-faceshop h2 {
      font-size: 28px;
  }

  .mobile-text-faceshop p {
      font-size: 18px;
  }

  .icon-links {
    display: flex;
    justify-content: left;
    gap: 15px!important;
    margin-top: 15px;
  }
}

.languages {
  max-width: 380px;
  width: 100%;
}

.languages a {
  color: #fff;
  text-decoration: none;
  margin: 5px 10px 10px 0;
  display: inline-block;
}

.languages a.active {
  background-color: #4da8da;
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 5px;
}

.languages a:hover {
  color: #b3c0d9;
}

.social-icons a {
  color: #fff;
  font-size: 40px;
  margin-right: 60px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #b3c0d9;
}




